home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / agrep / Makefile < prev    next >
Makefile  |  1994-08-01  |  653b  |  32 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. TARGETS    = agrep
  6.  
  7. LCOPTS    = -O
  8. HFILES    = agrep.h checkfile.h re.h
  9. CFILES    = asearch.c asearch1.c bitap.c checkfile.c compat.c follow.c main.c \
  10.     maskgen.c parse.c preprocess.c sgrep.c mgrep.c utilities.c
  11.  
  12. default: $(TARGETS)
  13.  
  14. include $(COMMONRULES)
  15.  
  16. $(TARGETS): $(OBJECTS)
  17.     $(CCF) -o $@ $(OBJECTS) $(LDFLAGS)
  18.  
  19. asearch.o:    agrep.h
  20. asearch1.o:   agrep.h
  21. bitap.o:      agrep.h
  22. checkfile.o:  checkfile.h
  23. follow.o:     re.h
  24. main.o:       agrep.h checkfile.h
  25. maskgen.o:    agrep.h
  26. next.o:       agrep.h
  27. parse.o:      re.h
  28. preprocess.o: agrep.h
  29. sgrep.o:      agrep.h
  30. abm.o:        agrep.h
  31. utilities.o:  re.h
  32.